home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 551-575 / disk_562 / intuisup / editor / source.lzh / imports.h < prev    next >
Text File  |  1991-10-20  |  2KB  |  52 lines

  1.         /*************************************
  2.          *                                   *
  3.          *             Editor v1.0           *
  4.          *   by Torsten Jürgeleit in 07/91   *
  5.          *                                   *
  6.          *              Imports              *
  7.          *                                   *
  8.          *************************************/
  9.  
  10.     /* Import from main.c */
  11.  
  12. IMPORT struct GfxBase        *GfxBase;
  13. IMPORT struct IntuitionBase    *IntuitionBase;
  14. IMPORT struct ArpBase        *ArpBase;
  15. IMPORT struct Library        *IntuiSupBase;
  16.  
  17. IMPORT struct Screen        wb_screen;
  18. IMPORT struct Window        *ewin, *pwin;
  19. IMPORT struct TextAttr        topaz60_attr, topaz80_attr;
  20. IMPORT struct NewWindow        project_new_window;
  21.  
  22. IMPORT struct TemplateList    template_list;
  23. IMPORT struct Template        *selected_template,
  24.                 *info_template;
  25. IMPORT struct Box        current_box;
  26.  
  27. IMPORT struct GadgetData    *use_gd;
  28. IMPORT struct Dimension        min_dimension[];
  29. IMPORT struct FileRequester    *project_file_requester,
  30.                 *csource_file_requester;
  31.  
  32. IMPORT struct GadgetData    text_gadget_data[], normal_gadget_data[];
  33.  
  34. IMPORT struct GadgetData    list_gadget_data[];
  35.  
  36. IMPORT APTR    eri, pri, egl, eml, use_gl;
  37.  
  38. IMPORT BYTE     *template_type_text_array[];
  39. IMPORT BYTE    *default_mx_text_array[], *default_cycle_text_array[],
  40.         *default_listview_text_array[];
  41.  
  42. IMPORT BYTE    project_window_title[];
  43.  
  44. IMPORT USHORT    snap_offset_table[];
  45.  
  46. IMPORT USHORT    editor_mode, snap_offset, template_type;
  47.  
  48. IMPORT USHORT    modify_mode, mouse_button;
  49. IMPORT SHORT    last_snap_x, last_snap_y;
  50.  
  51. IMPORT BOOL    info_displayed;
  52.